home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / RCSC.ZIP / PACKAGES / AWK320.ZIP / VALID.AWK < prev    next >
Text File  |  1990-02-08  |  85b  |  5 lines

  1. # validate input
  2.  
  3. NF != 2 { print "line", NR, "wrong number of fields"; print }
  4.  
  5.